/* =========================
   FOOTER FULL WIDTH
========================= */

.site-footer {
    width: 100%;
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* =========================
   FOOTER TOP SPACING
========================= */

.footer-top {
    padding: 70px 0 40px;
    position: relative;
}

.footer-top .container {
    max-width: 1320px;
    width: 100%;
}

/* =========================
   FOOTER ROW SPACING
========================= */

.footer-top .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* =========================
   FOOTER COLUMNS
========================= */

.footer-top .col-lg-3,
.footer-top .col-md-6,
.footer-top .col-sm-6 {
    flex: 1;
    min-width: 250px;
}

/* =========================
   WIDGET TITLE
========================= */

.widget-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.widget-title::after {
    content: "";
    width: 55px;
    height: 3px;
    background: #f7a11a;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* =========================
   ABOUT COMPANY TEXT
========================= */

.widget_about p {
    line-height: 30px;
    font-size: 15px;
    color: #d3d3d3;
}

/* =========================
   LOGO SPACING
========================= */

.logo-footer {
    margin-bottom: 20px;
}

.logo-footer img {
    max-width: 220px;
    height: auto;
}

/* =========================
   USEFUL LINKS
========================= */

.widget_services ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.widget_services ul li {
    margin-bottom: 15px;
}

.widget_services ul li a {
    color: #d3d3d3;
    text-decoration: none;
    transition: 0.3s;
}

.widget_services ul li a:hover {
    color: #f7a11a;
    padding-left: 5px;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-bx .form-control {
    height: 50px;
    border-radius: 0;
    border: none;
    padding-left: 15px;
}

.newsletter-bx .site-button {
    height: 50px;
    width: 55px;
    border: none;
    background: #f7a11a;
    color: #fff;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    gap: 10px;
    padding: 0;
    margin-top: 20px;
    list-style: none;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icons li a:hover {
    background: #f7a11a;
    border-color: #f7a11a;
}

/* =========================
   CONTACT BOXES
========================= */

.wt-icon-box-wraper {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 25px 20px;
    min-height: 140px;
    transition: 0.3s;
}

.wt-icon-box-wraper:hover {
    border-color: #f7a11a;
}

.wt-icon-box-wraper .icon-md {
    font-size: 42px;
    margin-right: 20px;
    color: #f7a11a;
}

.wt-icon-box-wraper .icon-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.wt-icon-box-wraper .icon-content p {
    color: #d3d3d3;
    line-height: 26px;
    margin-bottom: 0;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    padding: 25px 0;
    background: rgba(0,0,0,0.75);
}

.cpr-ftr-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyrights-text {
    color: #d3d3d3;
}

.copyrights-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.copyrights-nav li a {
    color: #d3d3d3;
    text-decoration: none;
}

.copyrights-nav li a:hover {
    color: #f7a11a;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {

    .footer-top .row {
        gap: 40px;
    }

    .cpr-ftr-section {
        flex-direction: column;
        text-align: center;
    }

    .copyrights-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}